/*
* Global Styles
*/

:root {
  /* Colours */
  --gblBlue: rgba(79,236,213,1);
  --gblPink: rgba(255, 143, 240,1);
  --gblTextYellow: rgba(230,191,53,1);
  --gblTextBlack: rgba(30,30,30,1);
  --gblTextBlackShadow: rgba(0, 0, 0, 0.25);
  --gblTextWhite: rgba(217,217,217,1);
  --gblTextBoxBackground: rgba(0, 0, 0, 0.55);

  /* File Paths */

  --imgIC-Logo: url("../images/IC-Logo.png");
  --imgIC-Seed: url("../images/IC-Seed.png");
  --imgIC-Shop-Splash: url("../images/HallowsEve.png");

  /* Padding */
  --gblPadding: 2vw;
  --gblPaddingSmall: 1vw;
  --gblPaddingLarge: 3vw;
  --gblPaddingExtraLarge: 4vw;
  --gblPaddingHuge: 5vw;

  /* Font Sizes */
  --gblFontSizeTiny: clamp(0.6rem, 1.5vw + 0.4vh, 1.5rem);
  --gblFontSizeSmall: clamp(0.8rem, 1.9vw + 0.7vh, 2rem);
  --gblFontSizeMedium: clamp(1rem, 2.1vw + 1.1vh, 2.4rem);
  --gblFontSizeLarge: clamp(1.5rem, 3vw + 1vh, 3rem);
  --gblFontSizeExtraLarge: clamp(2rem, 4vw + 1.5vh, 4rem);
  --gblFontSizeHuge: clamp(2.5rem, 5vw + 2vh, 5rem);
  --gblFontSizeGigantic: clamp(3rem, 6vw + 2.5vh, 6rem);
  --gblFontSizeMassive: clamp(3.5rem, 7vw + 3vh, 7rem);
  --gblFontSizeColossal: clamp(4rem, 8vw + 3.5vh, 8rem);
  --gblFontSizeTitanic: clamp(4.5rem, 9vw + 4vh, 9rem);
  --gblFontSizeBehemoth: clamp(5rem, 10vw + 4.5vh, 10rem);
  --gblFontSizeLeviathan: clamp(5.5rem, 11vw + 5vh, 11rem);
  --gblFontSizeGargantuan: clamp(6rem, 12vw + 5.5vh, 12rem);
  --gblFontSizeMonstrous: clamp(6.5rem, 13vw + 6vh, 13rem);
  --gblFontSizeEpic: clamp(7rem, 14vw + 6.5vh, 14rem);
  --gblFontSizeLegendary: clamp(7.5rem, 15vw + 7vh, 15rem);
  --gblFontSizeMythical: clamp(8rem, 16vw + 7.5vh, 16rem);
  --gblFontSizeGodlike: clamp(8.5rem, 17vw + 8vh, 17rem);
  --gblFontSizeDivine: clamp(9rem, 18vw + 8.5vh, 18rem);
  --gblFontSizeCelestial: clamp(9.5rem, 19vw + 9vh, 19rem);
  --gblFontSizeCosmic: clamp(10rem, 20vw + 9.5vh, 20rem);
  --gblFontSizeUniversal: clamp(10.5rem, 21vw + 10vh, 21rem);
  --gblFontSizeInfinite: clamp(11rem, 22vw + 10.5vh, 22rem);
  --gblFontSizeEternal: clamp(11.5rem, 23vw + 11vh, 23rem);
  --gblFontSizeTranscendent: clamp(12rem, 24vw + 11.5vh, 24rem);
  --gblFontSizeOmnipotent: clamp(12.5rem, 25vw + 12vh, 25rem);
  --gblFontSizeSupreme: clamp(13rem, 26vw + 12.5vh, 26rem);
  --gblFontSizeUltimate: clamp(13.5rem, 27vw + 13vh, 27rem);

  /* Font Families */
  --gblFontFamilyAgdasima: 'Agdasima', sans-serif;

  /* Shadows */
  --gblTextBlackShadow: rgba(0, 0, 0, 0.25);
  --gblTextWhiteShadow: rgba(255, 255, 255, 0.25);
  --gblTextYellowShadow: rgba(230,191,53,0.25);
  --gblTextPinkShadow: rgba(255, 143, 240, 0.25);
  --gblTextBoxShadow: rgba(0, 0, 0, 0.55);
  --gblTextBoxBackground: rgba(0, 0, 0, 0.55);

  /* Border Radius */
  --gblBorderRadiusSmall: 5px;
  --gblBorderRadiusMedium: 10px;
  --gblBorderRadiusLarge: 15px;
  --gblBorderRadiusExtraLarge: 20px;
  --gblBorderRadiusHuge: 25px;
  --gblBorderRadiusGargantuan: 30px;
}

.IC-Clickable {
  display: flex; 
  flex-direction: column;
  flex: 1;  
  cursor: pointer;
  color: var(--gblTextWhite);
  text-decoration: none;
}

.IC-Hidden {
  display: none;
}

.IC-Flex-Filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/*
* End Global Styles
*/

/* Administration Styles */

.IC-Admin-Grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(15rem, 25vw, 22rem), 1fr)); 
  gap: 4vw;
  padding: 4vw;
  width: 100%;
  box-sizing: border-box;
}

.IC-Admin-Bubble {
  background: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  padding: 4vh 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  box-shadow: 0 0.5vh 1vh rgba(0,0,0,0.25);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.IC-Admin-Bubble:hover {
  transform: translateY(-0.5vh);
  box-shadow: 0 1vh 2vh rgba(0,0,0,0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.IC-Admin-Bubble__title {
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeLarge);
  color: var(--gblTextYellow);
  margin-bottom: 2vh;
  text-align: center;
}

.IC-Admin-Bubble__icon {
  width: clamp(3rem, 10vw, 6rem);
  aspect-ratio: 1 / 1;
  margin-bottom: 2vh;
}

.IC-Admin-Bubble__content {
  flex: 1;
  flex-direction: column;
  display: flex;
  align-items: stretch; 
  gap: 2vh;
  justify-content: center;
  text-align: center;
  font-family: Agdasima, sans-serif;
  font-size: var(--gblFontSizeSmall);
  color: var(--gblTextYellow);
  line-height: 1.4;
}

.IC-Admin-Bubble__content p {
  margin: 0;
}

.IC-Admin-Bubble__content h3 {
  margin: 1vh 0 0.5vh;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--gblTextYellow);
  font-weight: bold;
}

.IC-Admin-Bubble__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--gblBorderRadiusSmall);
  overflow: hidden;
  box-shadow: 0 0.2vh 0.5vh rgba(0,0,0,0.3);
}

.IC-Admin-Bubble__content th,
.IC-Admin-Bubble__content td {
  padding: 0.5em 0.8em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.IC-Admin-Bubble__content th {
  text-align: left;
  font-weight: bold;
  color: var(--gblTextYellow);
  background: rgba(255,255,255,0.05);
}

.IC-Admin-Bubble__content tr:last-child td {
  border-bottom: none;
}

.IC-users {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  padding: 2vh 2vw;
  font-family: Agdasima, sans-serif;
  color: var(--gblTextYellow);
  width: 100%;
  box-sizing: border-box;
}

.IC-users-controls {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  width: 100%;
  box-sizing: border-box;
}

.IC-users-search {
  flex: 1;
  padding: 1vh 1vw;
  border-radius: 0.8vw;
  border: none;
  box-sizing: border-box;
}

.IC-users-filter {
  padding: 1vh 1vw;
  border-radius: 0.8vw;
  border: none;
}

.IC-users-panel {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  width: 100%;
  box-sizing: border-box;
}

.IC-users-buttons {
  display: flex;
  gap: 2vw;
  justify-content: center;
  padding-bottom: 1vh;
}

.IC-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gblTextBoxBackground);
  border-radius: 1vw;
  padding: 2vh 2vw;
  gap: 2vw;
  width: 100%;
  box-sizing: border-box;
}

.IC-user-image {
  width: clamp(3rem, 8vw, 6rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.IC-user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
  min-width: 0;
}

.IC-user-username {
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.IC-user-email,
.IC-user-created {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.IC-user-action {
  flex-shrink: 0;
}

.IC-user-action a {
  font-size: clamp(1rem, 2vw, 2rem);
  color: var(--gblTextYellow);
  text-decoration: none;
}

.IC-useredit {
  display: flex;
  justify-content: center;
  padding: 4vh 4vw;
  width: 100%;
  box-sizing: border-box;
}

.IC-useredit-form {
  display: flex;
  flex-direction: column;
  gap: 3vh;
  background: var(--gblTextBoxBackground);
  padding: 3vh 3vw;
  border-radius: 1.5vw;
  width: 100%;
  box-sizing: border-box;
  color: var(--gblTextWhite);
  font-family: Agdasima, sans-serif;
}

.IC-useredit-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1vh 2vw;
  align-items: center;
}

.IC-useredit-section--roles {
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.IC-useredit-label {
  font: var(--gblFontFamilyAgdasima);
  font-weight: bold;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
}

.IC-useredit-value {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  word-break: break-word;
}

.IC-useredit-input {
  font: var(--gblFontFamilyAgdasima);
  padding: 1vh 1vw;
  border: none;
  border-radius: 0.8vw;
  background: var(--gblBackgroundDark);
  color: var(--gblTextWhite);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  width: 100%;
  box-sizing: border-box;
}

.IC-useredit-roles-list {
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.IC-useredit-role {
  display: flex;
  align-items: center;
  gap: 1vw;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
}

.IC-useredit-actions {
  display: flex;
  gap: 2vw;
  justify-content: flex-end;
}

.IC-useredit-button {
  padding: 1vh 2vw;
  border: none;
  border-radius: 0.8vw;
  background: var(--gblTextYellow);
  color: var(--gblTextBlack);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-family: Agdasima;
  cursor: pointer;
}

.IC-useredit-button--cancel {
  background: var(--gblTextBlack);
  color: var(--gblTextYellow);
  border: 1px solid var(--gblTextYellow);
}

.IC-useredit-button--delete {
  background: #b22222;
  color: #fff;
}

.ic-useredit-ct {
  width: 100%;
}

/* End Administration Styles */

/* Components */

.IC-Carousel {
  color: var(--gblTextYellow);
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: Agdasima, sans-serif;
  height: 100%;
  margin: 0 auto;
  max-width: 50vw;
  text-align: center;
  width: 100%;
}

.IC-Carousel-ImageContainer {
  align-items: center;
  background: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  display: flex;
  flex: 1;
  height: auto;
  justify-content: center;
  min-height: 0;
  position: relative;
  width: 100%;
}

.IC-Carousel-ImageContainer > .IC-Clickable {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.IC-Carousel-Image {
  border-radius: var(--gblBorderRadiusMedium);
  display: block;
  height: auto;
  max-height: 80%;
  max-width: 80%;
  width: auto;
}

.IC-Carousel-Arrow {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: var(--gblBorderRadiusSmall);
  color: var(--gblTextYellow);
  cursor: pointer;
  font-size: var(--gblFontSizeSmall);
  padding: 0.2em 0.5em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.IC-Carousel-ArrowLeft {
  left: 5%;
}

.IC-Carousel-ArrowRight {
  right: 5%;
}

.IC-Carousel-Info {
  background: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--gblFontSizeSmall);
  font-weight: bold;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.IC-Product-Carousel {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2vw;
  background-color: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.IC-Product-Carousel__main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.IC-Product-Carousel__main img {
  width: 100%;
  max-width: 65vw;
  max-height: 45vh;
  object-fit: contain;
  border-radius: var(--gblBorderRadiusMedium);
  display: block;
}

.IC-Product-Carousel__thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.5rem;
}

.IC-Product-Carousel__thumb {
  position: relative;
  height: clamp(2rem, 12vw, 6rem);
  aspect-ratio: 1 / 1;
  border-radius: var(--gblBorderRadiusMedium);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2),
              0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.IC-Product-Carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
}

.IC-Product-Carousel__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  transition: opacity 0.2s ease;
  pointer-events: none;
  opacity: 1;
}

.IC-Product-Carousel__thumb.is-active::after {
  opacity: 0;
}

.IC-Product-Carousel__thumb:hover {
  transform: scale(1.06);
}

.IC-Product-Carousel__thumb.active {
    border: 2px solid var(--gblPink);
}

.IC-Product-Carousel__video {
  position: relative;
  height: clamp(2rem, 12vw, 6rem);
  aspect-ratio: 1 / 1;
  border-radius: var(--gblBorderRadiusMedium);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #000;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2),
              0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.IC-Product-Carousel__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  transition: opacity 0.2s ease;
  pointer-events: none;
  opacity: 1;
}

.IC-Product-Carousel__video.is-active::after {
  opacity: 0;
}

.IC-Product-Carousel__video:hover {
  transform: scale(1.06);
}

.IC-Product-Carousel__video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.IC-Product-Carousel__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
}

.IC-Product-Carousel__play-icon {
  position: absolute;
  font-size: 1.5rem;
  color: white;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}



.IC-Seed-Dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  min-width: 25vw;
  box-shadow: 0 4px 8px var(--gblTextBlackShadow);
  padding: 0.5vh 0;
  z-index: 1000;
}

.IC-Seed-Dropdown a {
  display: block;
  padding: 0.5vh 1vw;
  color: var(--gblTextYellow);
  text-decoration: none;
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
}

.IC-Seed-Dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.IC-header-seed:hover .IC-Seed-Dropdown {
  display: block;
}

.IC-cart-badge {
  position: absolute;
  bottom: 0%;  
  right: 5%;  
  background-color: var(--gblPink);
  color: var(--gblTextBlack);
  font-family: var(--gblFontFamilyAgdasima), sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeTiny);
  line-height: 1;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: clamp(0.75rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px var(--gblTextBlackShadow);
}

.IC-Section-AddedNotes {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.IC-Note-AddedNote {
  flex: 1;
  min-height: 10vh;
  background: var(--gblTextYellow);
  border-radius: var(--gblBorderRadiusMedium);
  padding: 2vh 2vw;
  box-sizing: border-box;
  color: var(--gblTextBlack);
  font-family: Agdasima;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
  line-height: 1.4;
  resize: vertical;
  border: none;
  margin-bottom: 1rem;
}

.IC-Section-Notes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.IC-Note-TextBox {
  flex: 1;
  min-height: 10vh;
  background: var(--gblTextYellow);
  border-radius: var(--gblBorderRadiusMedium);
  padding: 2vh 2vw;
  box-sizing: border-box;
  color: var(--gblTextBlack);
  font-family: Agdasima;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
  line-height: 1.4;
  resize: vertical;
  border: none;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.IC-Note-TextBox::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.IC-Button-Add {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--gblTextYellow);
  color: var(--gblTextBlack);
  font-weight: bold;
  font-family: Agdasima, sans-serif;
  font-size: 1.2rem;
  border: none;
  border-radius: var(--gblBorderRadiusSmall);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.IC-Button-Qty:hover {
  background-color: #e6d800;
  transform: scale(1.05);
}

.IC-Section-Total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  margin-top: 2rem;
  border-radius: var(--gblBorderRadiusSmall);
  background: var(--gblTextBoxBackground);
  padding: 1rem;
  box-sizing: border-box;
}

.IC-Total-Values {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
}

.IC-Text-Total {
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeMedium);
  color: var(--gblTextWhite);
}

.IC-Icon-PayPal {
  width: clamp(2.5rem, 12vw, 6rem);
  aspect-ratio: 1 / 1;
  background: url("../images/paypal.png") no-repeat center center;
  background-size: contain;
  border-radius: var(--gblBorderRadiusGargantuan);
  display: block;
  flex-shrink: 0;
}

.IC-DiscountCode {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.IC-DiscountCode__input {
  flex: 1;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  font-family: Agdasima, sans-serif;
  font-size: var(--gblFontSizeSmall);
  font-weight: bold;
  color: var(--gblTextBlack);
  background: var(--gblTextYellow);
  border: none;
  border-radius: var(--gblBorderRadiusSmall);
  box-sizing: border-box;
  outline: none;
}

.IC-DiscountCode__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.IC-DiscountCode__button {
  width: 3rem;
  aspect-ratio: 1 / 1;
  background-color: var(--gblPink);
  color: var(--gblTextBlack);
  border: none;
  border-radius: var(--gblBorderRadiusGargantuan);
  cursor: pointer;
  font-family: Agdasima, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.IC-DiscountCode__button:hover {
  background-color: #f0c800;
  transform: scale(1.05);
}

.IC-Order-Values {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  border-radius: var(--gblBorderRadiusSmall);
  flex-wrap: wrap;
}

.IC-Order-Left,
.IC-Order-Right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 10rem;
}

.IC-Order-Total {
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeMedium);
  color: var(--gblTextYellow);
}

#IC-image-lightbox {
    position: fixed;
    inset: 0;
    background-color: var(--gblTextBoxBackground);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
}

#IC-image-lightbox.hidden {
    display: none;
}

#IC-image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px var(--gblBackgroundDark);
}

#IC-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: var(--gblTextWhite);
    cursor: pointer;
    user-select: none;
}

/* End Components */

/* Pagination */

.IC-Pagination {
  border-radius: var(--gblBorderRadiusMedium);
  width: 100%;
  background-color: var(--gblBlue);
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}

.IC-Pagination__container {
  font-family: var(--gblFontFamilyAgdasima);
  font-weight: bold;
  position: relative;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.IC-Pagination__next-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.IC-Pagination__next {
  background-color: var(--gblPink);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: var(--gblBorderRadiusMedium);
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeSmall);
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.IC-Pagination__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeSmall);
  font-weight: bold;
  z-index: 2;
}

.IC-Pagination__page-pill {
  background-color: var(--gblPink);
  padding: 0.5rem 0.75rem;
  border-radius: var(--gblBorderRadiusExtraLarge);
  color: black;
  line-height: 1;
  height: 2.25rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.IC-Pagination__text {
  color: black;
  white-space: nowrap;
  padding-left: 0.5rem;
}

.IC-Pagination__arrow {
  background: url('../images/arrow.png') no-repeat center;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.IC-Pagination__arrow--right {
  transform: scaleX(-1);
}

/* End Pagination */

/* Header Styles */

.IC-header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gblBlue);
  padding: 0 2vw;
  box-shadow: 0px 4px 6px var(--gblTextBlackShadow);
  box-sizing: border-box;
  min-height: clamp(60px, 11vw, 150px);
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 100;
}

.IC-header-logo,
.IC-header-seed {
  height: clamp(50px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  flex-shrink: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  position: relative;
}

.IC-header-logo {
  background: url("../images/IC-Logo.png") no-repeat center;
  background-size: contain;
}

.IC-header-seed {
  background: url("../images/IC-Seed.png") no-repeat center;
  background-size: contain;
}


.IC-header-title {
  flex: 1;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: clamp(1rem, 6vw, 5.5rem);
  color: var(--gblTextBlack);
  text-shadow: 0px 2px 4px var(--gblTextBlackShadow);
  margin: 0 2vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* End Header Styles */

/* Footer Styles */

.IC-footer-wrapper {
  width: 100vw;
  min-height: 5vh;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gblTextBlack);
  padding: 0 1vw;
  box-shadow: 0px -4px 6px var(--gblTextBlackShadow);
}

.IC-footer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: clamp(0.2rem, 2vw, 3rem);
  color: var(--gblTextWhite);
  text-shadow: 0px -2px 4px var(--gblTextBlackShadow);
}

/* End Footer Styles */

/* Main Styles */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.IC-page-wrapper {
  width: 100%;
  min-height: 100vh;
  background: rgba(79, 236, 213, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.IC-admin-page-wrapper {
  width: 100%;
  min-height: 100vh;
  background: var(--gblTextBlack);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}
/* End Main Styles */

/* Content Bubble Styles */

.IC-Bubble {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2vh 1vw 0 1vw;
}

.IC-Bubble__yesflex {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  padding: 2vh 1vw 0 1vw;
}

.IC-Bubble__noflex {
  width: 100%;
  justify-content: center;
  padding: 2vh 1vw 0 1vw;
}

.IC-Bubble-TextBox {
  width: 100%;
  height: 98%;
  background: var(--gblTextBoxBackground);
  border-radius: 10px;
  padding: 2vh 2vw;
  box-sizing: border-box;
  position: relative;
  color: var(--gblTextWhite);
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
  line-height: 1.2;
  text-shadow: 0 4px 4px var(--gblTextBlackShadow);
}

.IC-HeadBubble-Icon {
  height: var(--gblFontSizeCelestial);
  max-height: 20vh;
  aspect-ratio: 1 / 1;
  margin-right: 2vw;
  border-radius: var(--gblBorderRadiusMedium);
  display: block;
}

.IC-Bubble-TextBox-Header {
  display: flex;
  align-items: center;
  gap: 2vw;
  width: 100%;
  background: var(--gblTextBoxBackground);
  border-radius: 10px;
  padding: 2vh 2vw;
  box-sizing: border-box;
  color: var(--gblTextWhite);
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
  line-height: 1.2;
  text-shadow: 0 4px 4px var(--gblTextBlackShadow);
  overflow: hidden;
}

.IC-Bubble-TextBox-Shop {
  flex: 1;
  background: var(--gblTextBoxBackground);
  border-radius: 10px;
  padding: 2vh 2vw;
  box-sizing: border-box;
  position: relative;
  color: var(--gblTextWhite);
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeSmall);
  line-height: 1.2;
  text-shadow: 0 4px 4px var(--gblTextBlackShadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.IC-HeadBubble-Icon-Header {
  aspect-ratio: 1 / 1;
  border-radius: var(--gblBorderRadiusMedium);
  display: block;
  height: clamp(4rem, 20vw, 24rem);
  margin-right: 2vw;
  max-height: 30vh;
}

.IC-Bubble-Title {
  font-family: Agdasima, sans-serif;
  font-weight: bolder;
  font-size: clamp(1rem, 2.1vw + 1.1vh, 2.4rem);
}

.IC-Bubble-Text {
  width: 100%;
  display: block;
  overflow-wrap: break-word;
  text-align: left;
}

.IC-Bubble-Text-Header {
  width: 100%;
  height: 100%;
  display: block;
  overflow-wrap: break-word;
  text-align: left;
}


.IC-HeadBubble {
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.IC-HeadBubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/tentpic.png") no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.IC-MaxWidth {
  width: 100vw;
}

.IC-BackgroundTextRead {
  background: var(--gblTextBoxBackground);
}

.IC-HeadBubble-Text {
  width: 100%;
  color: var(--gblTextYellow);
  font-family: Agdasima;
  font-weight: bold;
  font-size: var(--gblFontSizeLarge);
  text-shadow: 0px 4px 4px var(--gblTextBlackShadow);
  text-align: center;
  padding: 1.5vh 2vw;
  position: relative;
  z-index: 2;
}

.IC-Bubble-Ct {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  position: relative;
  margin-top: 2vh;        
  border-radius: 1.5vw;     
  padding: 2vw;          
  width: 100%;       
  z-index: 1;
}


.IC-Bubble-Ct__small {
  position: relative;
  border-radius: 10px;
  padding: 3vh 2vw;
  display: block;
  justify-content: center;
  z-index: 1;
  width: 100%;
}

.IC-Bubble-Ct-Flex__small {
  position: relative;
  border-radius: 10px;
  padding: 1rem;
  display: flex; 
  flex-direction: row; 
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  width: 100%;
}

.IC-Bubble-Row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15vw;
}

.IC-Bubble-2ColumnRow {
  display: flex;
  flex-direction: row;
  align-items: stretch; 
  gap: 2vw; 
}

.IC-Bubble-2ColumnLeftImage {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.IC-Bubble-2ColumnBox {
  flex: 1; 
  display: flex;
  flex-direction: column; 
  position: relative;
  padding: 2vh 2vw;
  color: var(--gblTextYellow);
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: clamp(0.6rem, 1.5vw + 0.5vh, 2rem);
  line-height: 1.2;
  text-shadow: 0 4px 4px var(--gblTextBlackShadow);
  border-radius: 10px;
  min-height: 25vw;
  box-sizing: border-box;
}

.IC-Bubble-Center {
  justify-content: center;
  display: flex;
}

.IC-Bubble-Icon {
  padding: 5px;
  position: bottom;
  min-width: 6vh;
  max-width: 8vw;
  min-height: 6vh;
  max-height: 8vw;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.IC-Bubble-Error {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Agdasima;
  color: var(--gblTextWhite);
  padding: 5vh 2vw;
  width: 100%;
}

.IC-Bubble-Error-Content {
  background: var(--gblTextBoxBackground);
  border-radius: 2vw;
  padding: 4vh 4vw;
  max-width: 90%;
  box-shadow: 0 1vh 2vh rgba(0,0,0,0.3);
  text-align: center;
}

.IC-Bubble-Error-Title {
  font-size: var(--gblFontSizeExtraLarge);
  font-weight: bolder;
  margin-bottom: 2vh;
}

.IC-Bubble-Error-Message {
  font-size: var(--gblFontSizeLarge);
  line-height: 1.5;
}

.IC-Bubble-Error-Message {
  font-size: var(--gblFontSizeMedium);
  line-height: 1.5;
}

/* Bubble backgrounds */

.IC-Background-Harvest {
  position: relative;
  overflow: hidden; 
}

.IC-Background-Harvest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/harvestpic.png") no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.IC-Background-Harvest > * {
  position: relative;
  z-index: 1;
}

.IC-Background-VariegatedSugar {
  position: relative;
  overflow: visible; 
}

.IC-Background-VariegatedSugar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/variegatedsugar.png") no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.IC-Background-VariegatedSugar > * {
  position: relative;
  z-index: 1;
}


/* End Bubble backgrounds */

/* End Content Bubble Styles */

/* Icon Styles */

.IC-Media-Icon {
  padding: 5px;
  width: clamp(1.8rem, 10vw, 4rem);
  height: auto;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.IC-Article-Icon {
  padding: 5px;
  min-width: 8vw;
  max-width: 16vw;
  height: auto;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.IC-Article-Blurb-Icon {
  padding: 5px;
  width: 30%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  border-radius: var(--gblBorderRadiusLarge);
}

/* End Icon Styles */

/* Form Styles */

.IC-Form {
  display: flex;
  font-family: var(--gblFontFamilyAgdasima);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  width: 100vw;
}

.IC-Flex-Search {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: stretch;
}

.IC-Form__search {
  flex: 1;
  min-width: 0;
  height: 2.5rem;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.IC-Form__search-btn {
  flex: 0 0 auto;
  height: 2.5rem;
}

.IC-Flex-Filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.IC-Form__body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 0.5rem;
}

.IC-Form__title {
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeLarge);
  color: var(--gblTextBlack);
  text-shadow: 0px 4px 4px var(--gblTextBlackShadow);
  text-align: center;
  margin-bottom: 2vh;
}

.IC-Form__container {
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 4px 6px var(--gblTextBlackShadow);
}

.IC-Form__label {
  color: var(--gblTextBlack);
  font-family: Agdasima, sans-serif;
  margin-bottom: 0.5rem;
  font-size: var(--gblFontSizeMedium);
  text-shadow: 0px 1px 2px var(--gblTextBlackShadow);
}

.IC-Form__input {
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
  color: var(--gblTextBlack);
  border: 1px solid var(--gblTextWhite);
  border-radius: 5px;
  box-sizing: border-box;
}

.IC-Form__button {
  max-width: 100%;
  padding: 0.75rem;
  background-color: var(--gblTextYellow);
  color: var(--gblTextBlack);
  font-weight: bold;
  border: none;
  border-radius: var(--gblBorderRadiusSmall);
  cursor: pointer;
  font-family: Agdasima, sans-serif;
  font-size: var(--gblFontSizeMedium);
  transition: background-color 0.3s ease;
}

.IC-Form__button--secondary {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid var(--gblTextYellow);
  color: var(--gblTextBlack);
  font-weight: bold;
  border-radius: var(--gblBorderRadiusSmall);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

select.IC-Form__input {
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gblTextWhite);
  border-radius: var(--gblBorderRadiusSmall);
  font-size: var(--gblFontSizeSmall);
  box-sizing: border-box;
  color: var(--gblTextBlack);
}

.IC-FileUpload-Wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.IC-FileUpload-Name {
  font-size: 0.9rem;
  color: var(--gblTextWhite);
}

/* End Form Styles */

/* Table Styles */

.IC-Table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: var(--gblBorderRadiusSmall);
  overflow: hidden;
  margin: 2vh 0;
  background: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusSmall);
  table-layout: auto;
}

.IC-Table__grid {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  align-items: center;
  gap: 1rem;
}

.IC-Table th, .IC-Table td {
  padding: 1rem;
  color: var(--gblTextWhite);
  font-size: var(--gblFontSizeSmall);
  font-family: Agdasima;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

thead .IC-Table__row.IC-Table__grid {
  gap: 0;
}

.IC-Table th {
  background-color: var(--gblTextYellow);
  color: var(--gblTextBlack);
  font-weight: bold;
  font-size: var(--gblFontSizeMedium);
}

.IC-Table tr:nth-child(even) {
  background-color: rgba(217,217,217,0.1);
}

.IC-Table tr:hover {
  background-color: rgba(217,217,217,0.2);
}

.IC-Table__title-hr {
  width: 100%;
  height: 0.2vh;
  background-color: var(--gblTextYellow);
  border: none;
}

.IC-Table__row {
  border: none; 
  background: none;
  padding: 0;
  margin: 0;
}

.IC-Table__cell {
  position: relative;
  padding-left: 1rem;
  text-align: center;
  border: none;
  color: var(--gblTextYellow);
}

.IC-Table__cell::before {
  content: none;
}

.IC-Table__cell img {
  width: 100%;
  max-width: 8rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: var(--gblBorderRadiusSmall);
  display: block;
  object-fit: contain;
}

.IC-Table__productname {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.IC-Table__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.IC-QtyBtn {
  background: var(--gblTextYellow);
  color: var(--gblTextBlack);
  border: none;
  border-radius: var(--gblBorderRadiusSmall);
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in-out;
}

.IC-QtyBtn:hover {
  background: rgba(255, 221, 51, 0.8);
}

.IC-QtyValue {
  min-width: 2rem;
  text-align: center;
  font-weight: bold;
  color: var(--gblTextWhite);
}

/* End Table Styles */

/* Comments Section Styles */

.IC-Comments-Section {
  max-height: 20vh;
  overflow-y: auto;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-width: auto;
  scrollbar-color: var(--gblTextYellow) transparent;
}

.IC-Comments-Section::-webkit-scrollbar {
  width: 1rem;
}
.IC-Comments-Section::-webkit-scrollbar-thumb {
  background-color: var(--gblTextYellow);
  border-radius: var(--gblBorderRadiusSmall);
}

.IC-Comment-Bubble {
  background-color: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  border: 1px solid var(--gblPink);
  padding: 1rem;
  display: flex;
  position: relative;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.IC-Comment-ProfilePic {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.IC-Comment-Content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.IC-Comment-Content__nonauth {
  flex: 1;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--gblTextWhite);
}

.IC-Comment-Content__nonauth p a {
  color: var(--gblBlue);
  text-decoration: underline;
}

.IC-Comment-Header {
  display: flex;
  align-items: center;
}

.IC-Comment-Footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.IC-Comment-Footer button[type="submit"] {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--gblTextYellow);
  cursor: pointer;
  padding: 0;
}

.IC-Comment-Name {
  font-family: Agdasima, sans-serif;
  font-weight: bold;
  font-size: var(--gblFontSizeMedium);
  color: var(--gblBlue);
}

.IC-Comment-Text {
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
  color: var(--gblTextWhite);
  min-height: 2rem;
  word-break: break-word;
}

.IC-Comment-Text textarea {
  width: 100%;
  min-height: 4rem;
  resize: vertical;
  border: 1px dashed var(--gblPink);
  border-radius: var(--gblBorderRadiusSmall);
  background-color: transparent;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
  color: var(--gblTextYellow);
  padding: 0.5rem;
  outline: none;
}

.IC-Comment-Text textarea::placeholder {
  color: #888;
  font-style: italic;
}

.IC-Comment-Text[contenteditable="true"]:empty {
  border: 1px dashed var(--gblPink);
}

.IC-Comment-Text[contenteditable="true"]:empty:before {
  content: attr(placeholder);
  color: #888;
  font-style: italic;
}

.IC-Comment-Image img,
.IC-Comment-ImagePlaceholder {
  width: calc(100% - 8rem);
  max-width: 60%;
  max-height: auto;
  object-fit: cover;
  border-radius: var(--gblBorderRadiusSmall);
  background-color: rgba(255,255,255,0.05);
  color: #aaa;
  text-align: center;
  padding: 0.5rem;
  font-size: var(--gblFontSizeTiny);
  font-style: italic;
}

.IC-Comment-ImagePlaceholder {
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
}

.IC-Comment-Date,
.IC-Comment-Arrow {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-size: var(--gblFontSizeSmall);
  color: var(--gblBlue);
  font-family: sans-serif;
}

.IC-Comment-Arrow {
  font-size: 2rem; 
  bottom: 1rem;
  right: 1rem;
  color: var(--gblTextYellow);
  font-family: sans-serif;
  line-height: 1;
  flex-shrink: 0;
}

.IC-Comment-Date--new {
  font-size: var(--gblFontSizeMedium);
  font-weight: bold;
  bottom: 1rem;
  right: 1rem;
  color: var(--gblTextYellow);
  font-family: sans-serif;
  position: static;
}

.IC-Comment-Reply {
    margin-left: 3.5rem;
}

.IC-Comment-ReplyForm {
    margin-top: 0.5rem;
}

.IC-Comment-ReplyForm textarea {
    width: 100%;
    min-height: 3rem;
}

.IC-Comment-Delete {
    margin-left: auto;
    cursor: pointer;
    color: var(--gblRed);
}

.IC-Comment-DeleteForm {
    display: inline;
    margin-left: auto;
}

.IC-Comment-DeleteForm button.IC-Comment-Delete {
    all: unset;            
    display: inline-flex;     
    cursor: pointer;
    color: var(--gblRed);
    font-size: 1.2rem;
    line-height: 1;
    justify-content: center;
    align-items: center;
}

.IC-Comments-Small {
  max-height: clamp(20vh, 40vw, 60vh);
}

.IC-Comments-Medium {
  max-height: clamp(40vh, 60vw, 60vh);
}

.IC-Comments-Large {
  max-height: clamp(60vh, 80vw, 80vh);
}

/* End Comments Section Styles */

/* Article and Product Layout Grid Styles */

.IC-ArticlePreview {
  width: 100%;
  background: transparent;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.IC-ArticlePreview-Inner {
  display: flex;
  gap: 1rem;
  background-color: var(--gblTextBoxBackground);
  border: 1px solid var(--gblPink);
  border-radius: var(--gblBorderRadiusMedium);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 100%;

  align-items: center;
}

.IC-ArticlePreview-Left {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  padding-right: 1rem;

  align-items: center;
}

.IC-ArticlePreview-Left img {
  width: 90%;
  max-width: 35rem;
  height: auto;
  max-height: 100%;
  border-radius: var(--gblBorderRadiusMedium);
  object-fit: contain;
}

.IC-ArticlePreview-Right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;

  justify-content: flex-start;
}

.IC-ArticlePreview-Title {
  font-size: var(--gblFontSizeLarge);
  font-family: var(--gblFontFamilyAgdasima);
  font-weight: bolder;
  color: var(--gblBlue);
  margin: 0;
}

.IC-ArticlePreview-Blurb {
  font-size: var(--gblFontSizeMedium);
  font-family: var(--gblFontFamilyAgdasima);
  font-weight: normal;
  color: var(--gblTextWhite);
  margin: 0;
}

.IC-ArticlePreview-MetaRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;

  margin-top: auto;
}

.IC-ArticlePreview-Meta {
  display: flex;
  flex-direction: column;
  gap: var(--gblFontSizeLarge);
  font-size: var(--gblFontSizeSmall);
  font-family: var(--gblFontFamilyAgdasima);
  color: var(--gblTextWhite);
  flex-grow: 1;
}

.IC-ArticlePreview-Arrow {
  font-size: 1.75rem;
  color: var(--gblTextYellow);
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  margin-left: auto;
  align-self: flex-end;
}

.IC-ArticlePreview-Cart {
  height: var(--gblFontSizeGigantic);
  aspect-ratio: 1 / 1;
  color: var(--gblBlue);
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  background: url('../images/cart.png') no-repeat center center;
  background-size: contain;
}

.IC-Article-Cart {
  height: var(--gblFontSizeHuge);
  aspect-ratio: 1 / 1;
  color: var(--gblBlue);
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  margin-left: 0;
  align-self: center;
  background: url('../images/cart.png') no-repeat center center;
  background-size: contain;
}

.IC-Article {
  background: var(--gblTextBoxBackground);
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  border-radius: var(--gblBorderRadiusMedium);
  position: relative; 
  overflow: hidden;    
  z-index: 1;         
}

.IC-Article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/variegatedsugar.png') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1; 
  border-radius: var(--gblBorderRadiusMedium);
}

.IC-Article-Wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2vh 1vw 2vh 1vw;
}

.IC-Article__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.IC-Article__section {
  width: 100%;
  background-color: var(--gblTextBoxBackground);
  padding: 1.5rem;
  border-radius: var(--gblBorderRadiusMedium);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.IC-Article__text {
  font-size: var(--gblFontSizeSmall);
  font-family: Agdasima, sans-serif;
  color: var(--gblTextWhite);
  line-height: 1.6;
}

.IC-Article__section--image-left,
.IC-Article__section--image-right {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.IC-Article__section--image-left .IC-Article__image-wrapper,
.IC-Article__section--image-right .IC-Article__image-wrapper {
  flex: 1 1 40%;
}

.IC-Article__section--image-left .IC-Article__text,
.IC-Article__section--image-right .IC-Article__text {
  flex: 1 1 50%;
}

.IC-Article__section--image-right {
  flex-direction: row-reverse;
}

.IC-Article__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--gblBorderRadiusMedium);
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.IC-Article__images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.IC-Article__image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: clamp(8rem, 45%, 40rem);
  gap: 0.5rem;
}

.IC-Article__image-block img {
  width: 100%;
  border-radius: var(--gblBorderRadiusMedium);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.IC-Article-DynamicSection {
  margin-top: 2rem;
}

.IC-ImageText {
  width: 100%;
  gap: 1rem;
  align-items: center;
}

.IC-ImageText--reversed {
  flex-direction: row-reverse;
}

.IC-ImageText__image {
  flex: 1 1 40%;
}

.IC-ImageText textarea {
  flex: 1 1 55%;
  min-height: 100px;
}

.IC-Gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.IC-Gallery__item {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px dashed #ccc;
  padding: 0.5rem;
}

.IC-Article__sectionSelector {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.IC-Article__sectionWrapper {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--gblTextBoxBackground);
  border-radius: var(--gblBorderRadiusMedium);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: visible;
}

.IC-Article__imageContainer {
  flex: 1 1 30%;
  width: 100%;
}

.IC-Article__textContainer {
  flex: 1 1 60%;
  width: 100%;
  height: 100%;
}

.quill-editor {
  width: 100%;
  min-height: 10vh;
  box-sizing: border-box;
  flex-grow: 1;
}

.ql-container {
  height: auto !important;
  min-height: 10vh;
  border: none;
}

.ql-editor {
  font-family: var(--gblFontFamilyAgdasima);
  color: var(--gblTextWhite) !important;
  background-color: var(--gblTextBoxBackground) !important;
  padding: 0.75rem;
  min-height: 10vh;
  box-sizing: border-box;
}

.ql-toolbar {
  background: var(--gblTextBoxBackground);
  color: var(--gblTextWhite);
  border: none;
}

/* End Article and Product Layout Grid Styles */

/* Editor Styles */

.IC-Editor-Button {
  border-radius: var(--gblBorderRadiusMedium);

}

.IC-Editor-Input {
  width: 100%;
  height: 2rem;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
}

.IC-Editor-Input__nojs {
  width: 100%;
  font-family: var(--gblFontFamilyAgdasima);
  font-size: var(--gblFontSizeMedium);
}

/* End Editor Styles */

* {
  box-sizing: border-box;
}

/* Vendor Styles */

.IC-dashboard {
  display: flex;
  font-family: var(--gblFontFamilyAgdasima);
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  width: 100vw;
}

.IC-dashboard__summary,
.IC-dashboard__products,
.IC-dashboard__top {
  background: var(--gblTextYellowShadow);
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

.IC-dashboard__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.IC-dashboard__metrics {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.IC-metric__label {
  display: block;
  font-size: 0.875rem;
  color: #666;
}

.IC-metric__value {
  font-size: 1.25rem;
  font-weight: bold;
}

.IC-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.IC-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 0.75rem;
}

.IC-product__name {
  font-weight: 600;
}

.IC-product__price,
.IC-product__stock {
  font-size: 0.9rem;
  color: #555;
}

.IC-product__action {
  text-decoration: none;
  font-size: 1.25rem;
  color: #333;
}

.IC-pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.IC-pagination__link {
  color: #0077cc;
  text-decoration: none;
}

.IC-toplist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.IC-toplist__item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* End Vendor Styles */
